home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-01-12 | 491 b | 14 lines | [TEXT/ToyS] |
- property gCount : 0
- property dlog : {bounds:[20, 40, 340, 200], name:"Show Text", style:standard window, closeable:true ¬
- , contents:[{class:text field, bounds:[0, 0, 320, 160]}]}
-
- dd auto dialog dlog with fonts {name:"Geneva", size:9} --with greyscale
-
- on open x
- display dialog "Received open event with " & ((x as list)'s length) & " parameters."
- end open
-
- on ShowText(x)
- set gCount to gCount + 1
- dd set value of item 1 of dialog 1 to (gCount as text) & ": " & (x as text)
- end ShowText